Avoid a mnemonic conflict. (#163850, Dennis Cranston)
authorMatthias Clasen <mclasen@redhat.com>
Fri, 10 Mar 2006 22:56:15 +0000 (22:56 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 10 Mar 2006 22:56:15 +0000 (22:56 +0000)
2006-03-10  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkcolorsel.c (gtk_color_selection_init): Avoid a mnemonic
conflict.  (#163850, Dennis Cranston)

ChangeLog
ChangeLog.pre-2-10
gtk/gtkcolorsel.c

index b4e3d60e544783d21e6a4220ae23eb57eb6266ab..bc68f9346f8baf6590b0c85402a17f4c5d4dd487 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2006-03-10  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkcolorsel.c (gtk_color_selection_init): Avoid a mnemonic
+       conflict.  (#163850, Dennis Cranston)
+
        * gtk/gtkaboutdialog.c (gtk_show_about_dialog): Make the behaviour
        of the about dialog consistent with other dialogs in gtk. If the
        dialog is constructed with gtk_about_dialog_new(), the creator
index b4e3d60e544783d21e6a4220ae23eb57eb6266ab..bc68f9346f8baf6590b0c85402a17f4c5d4dd487 100644 (file)
@@ -1,5 +1,8 @@
 2006-03-10  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkcolorsel.c (gtk_color_selection_init): Avoid a mnemonic
+       conflict.  (#163850, Dennis Cranston)
+
        * gtk/gtkaboutdialog.c (gtk_show_about_dialog): Make the behaviour
        of the about dialog consistent with other dialogs in gtk. If the
        dialog is constructed with gtk_about_dialog_new(), the creator
index bd590986c9d3bd4b84da9e77b0267df7ef336a5e..ec6673dfc94e72fb94009cc3de679f92ed17aed9 100644 (file)
@@ -1996,7 +1996,7 @@ gtk_color_selection_init (GtkColorSelection *colorsel)
                          _("Amount of blue light in the color."));
   gtk_table_attach_defaults (GTK_TABLE (table), gtk_hseparator_new (), 0, 8, 3, 4); 
 
-  priv->opacity_label = gtk_label_new_with_mnemonic (_("_Opacity:")); 
+  priv->opacity_label = gtk_label_new_with_mnemonic (_("Op_acity:")); 
   gtk_misc_set_alignment (GTK_MISC (priv->opacity_label), 0.0, 0.5); 
   gtk_table_attach_defaults (GTK_TABLE (table), priv->opacity_label, 0, 1, 4, 5); 
   adjust = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 255.0, 1.0, 1.0, 0.0));